From: Richard M. Stallman Date: Sat, 17 Sep 1994 00:27:16 +0000 (+0000) Subject: (Fcall_interactively): Use EMACS_INT. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~90244 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=132b933732fe8c95597e52c7a6749cfca3bd9c60;p=emacs.git (Fcall_interactively): Use EMACS_INT. --- diff --git a/src/callint.c b/src/callint.c index 0f996e1b5f2..7645424c8c4 100644 --- a/src/callint.c +++ b/src/callint.c @@ -221,7 +221,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") function = wrong_type_argument (Qcommandp, function); goto retry; } - if ((int) string == 1) + if ((EMACS_INT) string == 1) /* Let SPECS (which is nil) be used as the args. */ string = 0; }